home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 12 - 1996 / 12.09 Sep 96 / C++ DebugStr / streamstructsmac.h < prev    next >
Encoding:
Text File  |  1996-06-18  |  522 b   |  23 lines  |  [TEXT/R*ch]

  1. // (c) copyright 1995,1996, Jon Kalb, Liberty Software
  2. // Kalb@LibertySoft.com
  3. // You may freely incorporate this code into any machine-
  4. // readable project. You may modify this code, but you may
  5. // not remove this statement. 
  6.  
  7. #ifndef _STREAMSTRUCTSMAC_
  8. #define _STREAMSTRUCTSMAC_
  9.  
  10. #include <iostream.h>
  11. #include <QuickDraw.h>
  12.  
  13. // inserters
  14.  
  15. ostream &operator<<(ostream &stream, const Point &rhs);
  16.  
  17. ostream &operator<<(ostream &stream, const Rect &rhs);
  18.  
  19. ostream &operator<<(ostream &stream, const BitMap &rhs);
  20.  
  21.  
  22. #endif
  23.